home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / hdf / unix / hdf3_2r2.lha / HDF3.2r2 / test / tlinkage.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-28  |  2.8 KB  |  125 lines

  1. /***************************************************************************
  2. *
  3. *
  4. *                         NCSA HDF version 3.2r2
  5. *                            October 30, 1992
  6. *
  7. * NCSA HDF Version 3.2 source code and documentation are in the public
  8. * domain.  Specifically, we give to the public domain all rights for future
  9. * licensing of the source code, all resale rights, and all publishing rights.
  10. *
  11. * We ask, but do not require, that the following message be included in all
  12. * derived works:
  13. *
  14. * Portions developed at the National Center for Supercomputing Applications at
  15. * the University of Illinois at Urbana-Champaign, in collaboration with the
  16. * Information Technology Institute of Singapore.
  17. *
  18. * THE UNIVERSITY OF ILLINOIS GIVES NO WARRANTY, EXPRESSED OR IMPLIED, FOR THE
  19. * SOFTWARE AND/OR DOCUMENTATION PROVIDED, INCLUDING, WITHOUT LIMITATION,
  20. * WARRANTY OF MERCHANTABILITY AND WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE
  21. *
  22. ****************************************************************************
  23. */
  24.  
  25. #ifdef RCSID
  26. static char RcsId[] = "@(#)$Revision: 1.4 $";
  27. #endif
  28. /*
  29. $Header: /hdf/hdf/v3.2r2/test/RCS/tlinkage.c,v 1.4 1992/10/23 00:41:46 koziol beta koziol $
  30.  
  31. $Log: tlinkage.c,v $
  32.  * Revision 1.4  1992/10/23  00:41:46  koziol
  33.  * Removed calls to HIlock and HIunlock because they were made static in hfile.c
  34.  *
  35.  * Revision 1.3  1992/07/09  16:08:00  chouck
  36.  * Minor fix to a few routine names for VMS
  37.  *
  38.  * Revision 1.2  1992/05/29  19:23:00  chouck
  39.  * Modified to reflect current names
  40.  *
  41.  * Revision 1.1  1992/02/10  20:59:34  chouck
  42.  * Initial revision
  43.  *
  44. */
  45.  
  46. /*
  47.   As the VMS linker ignores case, some function names have
  48.   to be redefined.  BUT don't just include hdf.h as then
  49.   we will get all the prototypes too.
  50. */
  51. #ifdef VMS
  52. #include "dfivms.h"
  53. #endif
  54.  
  55. main()
  56. {
  57.     puts("This program is for checking the linkage of functions.");
  58.     puts("Should not be run.");
  59.     exit(1);
  60.  
  61.     HEstring();
  62.     HEpush();
  63.     HEprint();
  64.     HEvalue();
  65.  
  66.     Hopen();
  67.     Hclose();
  68.     Hstartread();
  69.     Hnextread();
  70.     Hinquire();
  71.     Hstartwrite();
  72.     Hseek();
  73.     Hread();
  74.     Hwrite();
  75.     Hendaccess();
  76.     Hgetelement();
  77.     Hputelement();
  78.     Hlength();
  79.     Hoffset();
  80.     Hdupdd();
  81.     HIupdate_dd();
  82.     Hdeldd();
  83.     Hnewref();
  84.     Hishdf();
  85.     Hsync();
  86.     HIgetspinfo();
  87.     HDvalidfid();
  88.     HDerr();
  89.     Hnumber();
  90.  
  91.     HLcreate();
  92.     HXcreate();
  93.  
  94.     DFPgetpal();
  95.     DFPputpal();
  96.     DFPaddpal();
  97.     DFPnpals();
  98.     DFPreadref();
  99.     DFPwriteref();
  100.     DFPrestart();
  101.     DFPlastref();
  102.  
  103.     DFR8getdims();
  104.     DFR8getimage();
  105.     DFR8setpalette();
  106.     DFR8putimage();
  107.     DFR8addimage();
  108.     DFR8nimages();
  109.     DFR8readref();
  110.     DFR8writeref();
  111.     DFR8restart();
  112.     DFR8lastref();
  113.  
  114.     DF24getdims();
  115.     DF24reqil();
  116.     DF24getimage();
  117.     DF24setdims();
  118.     DF24setil();
  119.     DF24restart();
  120.     DF24addimage();
  121.     DF24putimage();
  122.     DF24readref();
  123. }
  124.  
  125.